home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / tlxdsz21.zip / DIAL.SLT < prev    next >
Text File  |  1991-02-07  |  487b  |  15 lines

  1. // Display the dialing directory (same as Alt-D).  This script is meant to be
  2. // called upon Telix initialization by entering "TELIX /SDIAL" from DOS.  Doing
  3. // so will bypass the advertisment screen and go right into the directory.
  4. // Now correctly handles the Quick Dialing Bar being on.
  5. // Also starts the AUTODSZ script for automatic external DSZ.
  6. main()
  7. {
  8.  int qdbar_stat;
  9.  qdbar_stat = _qdbar_on;
  10.  _qdbar_on = 0;
  11.  dial();
  12.  _qdbar_on = qdbar_stat;
  13.  call("AUTODSZ");
  14. }
  15.